home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 36 / qostnote.zip / DIRECTLY.TEC < prev    next >
Text File  |  1990-07-03  |  2KB  |  35 lines

  1. ID:WS Writing Directly to the Screen
  2.  
  3. How can I tell if my program writes directly to the screen?
  4. Or how much memory it needs?
  5. -----------------------------------------------------------
  6.  
  7. To tell if an application is writing directly to the video 
  8. hardware inside DESQview, make the following changes in the 
  9. application's Change a Program menu:
  10.  
  11. 1) Set "Writes Text Directly to Screen" to N;
  12.  
  13. 2) Set "Virtualize Text/Graphics" to N;
  14.  
  15. 3) On the Advanced Options screen, blank out the following four 
  16. fields in the "Window Position" section: Starting Height, 
  17. Starting Width, Starting Row, and Starting Column.  Put blanks in 
  18. these fields, not zeros.
  19.  
  20. When these changes have been made, open the program. DESQview 
  21. will place a small window border on the screen; if the program 
  22. comes up and stays within the small window border, it does not 
  23. write directly to the screen.  If it blows away the window border 
  24. and takes the full screen, it writes directly to the hardware.
  25.  
  26. There is no foolproof way to determine how much memory an 
  27. application needs to run other than trial and error.  You can 
  28. make a reasonable guess by adding together the size of the .COM 
  29. or .EXE file that starts the program and the size of its biggest 
  30. overlay, but the program's data storage needs are difficult to 
  31. predict.  The time-honored method for determining the correct 
  32. memory size for a window is to start by giving the window 
  33. an excessive amount of memory, then reducing that figure a bit at 
  34. a time until the program starts malfunctioning.
  35.